home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7011.txt < prev    next >
Text File  |  1994-10-06  |  187b  |  11 lines

  1. Convert a real value into a longint value 
  2. e.g. Round(2.6) = 3
  3.  
  4. Round( v : REAL) : LONGINT;
  5.  
  6. Convert a real value into a longint value 
  7. e.g.  Trunc(2.6) = 2
  8.  
  9. Trunc( v : REAL) : LONGINT;
  10.  
  11.